Skip to content

Store adapter — QuickBooks Online

The adapter object contains properties for connecting to the QuickBooks Online API.

Parent object: a store with property "platform" : "quickbooks"

Required properties

The following adapter properties are required for QuickBooks Online stores.

company_id

Propertycompany_id
NameQuickBooks Online Company ID
Data typestring
Required?Yes

token

Propertytoken
NameQuickBooks Online API Token
Data typestring
Required?Yes

token_secret

Propertytoken_secret
NameQuickBooks Online API Secret
Data typestring
Required?Yes

Example

Example: create a new QuickBooks Online store
curl -X POST \
    -H "Authorization: Bearer $JWT_TOKEN" \
    -H "Content-Type: application/json" \
    https://api.getdropstream.com/stores \
    -d @- <<EOF
{ "customer_id": "3775",
  "name": "Your QuickBooks Online Store",
  "platform": "quickbooks",
  "adapter": {
    "company_id": "abc123",
    "token": "abc123",
    "token_secret": "abc123"
  }
}
EOF

For details about this request type, see: Create a new store.